home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1191 / 1191.xpi / chrome / reminderfox.jar / content / reminderfox / mail / scheduleOverlay.xul < prev   
Extensible Markup Language  |  2008-10-20  |  3KB  |  95 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- CSS Files -->
  4.  
  5. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?> 
  6. <?xml-stylesheet href="chrome://reminderfox/skin/reminder.css"  type="text/css"?>
  7. <?xml-stylesheet href="chrome://reminderfox/skin/catBox.css"  type="text/css"?>
  8. <?xml-stylesheet href="chrome://reminderfox/skin/schedule.css"  type="text/css"?>
  9.  
  10. <!-- DTD Files -->
  11. <!DOCTYPE window 
  12. [
  13.     <!ENTITY % dtd1 SYSTEM "chrome://reminderfox/locale/reminderfox.dtd" > %dtd1;
  14. ]>
  15.  
  16. <overlay
  17.    id="schedule-overlay"
  18.    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 
  19.        <stringbundleset id="stringbundleset">
  20.         <stringbundle     id="reminderFox-bundle" 
  21.                 src="chrome://reminderfox/locale/reminderfox.properties"/>
  22.     </stringbundleset>
  23.  
  24.     <script type="application/x-javascript" src="chrome://reminderfox/content/mail/schedule.js" />
  25.     <script type="application/x-javascript"  src="chrome://reminderfox/content/mail/rmFxIcalMail.js" />
  26.  
  27.     <vbox id="moreOptionsInvitationBox"          hidden="true">
  28.  
  29.             <!--    display 'schedule info' -->
  30.             <hbox >            
  31.                 <spacer width="5px" />
  32.                 <text value="&rf.schedule.scheduleinfo;" />
  33.                 <text id="scheduleInfos1" value="as of + sequence" />
  34.             </hbox>
  35.             <hbox id="scheduleInfos2Box" hidden="true">
  36.                 <spacer width="20px" />
  37.                 <text id="scheduleInfos2" value="DTSTART and DTEND" />
  38.             </hbox>
  39.  
  40.             <spacer height="10px" />
  41.  
  42.             <hbox id="OrganizerAndMe" >    
  43.                 <vbox>        
  44.                     <hbox id="scheduleOrganizer">   
  45.                         <spacer width="20px" />
  46.                         <text value="&rf.schedule.organizer;" width="120px"/>
  47.  
  48.                         <spacer width="65px" />
  49.                         <text  id="organzierName" value="organizer@web.xyt" flex="1" />        
  50.                         <spacer  width="5px"/>
  51.                     </hbox>
  52.                     
  53.                     <hbox id="scheduleMe"            hidden="true">
  54.                         <spacer width="20px" />
  55.                         <text id="scheduleMeText" value="&rf.schedule.thisisme;" width="120px"/>
  56.                         
  57.                         <vbox id="schMeBox" />
  58.                         <spacer  width="25px"/>
  59.                     </hbox >
  60.                     <!--gW to be used .... with iCal/Schedule  -->
  61.                     <!-- label id="statusMsg"  value="statusMsg" hidden="true"/ -->
  62.                     <hbox>    
  63.                             <spacer width="20px" />
  64.                             <button id="rf-iCal-my-Reply-Accept"  label="&rf.schedule.invitation.accept;"  oncommand="rmFx_rsvpNow('ACCEPTED');"  hidden="true" /> 
  65.                             <button id="rf-iCal-my-Reply-Decline" label="&rf.schedule.invitation.decline;" oncommand="rmFx_rsvpNow('DECLINED');" hidden="true" />                         
  66.                     </hbox>            
  67.                     
  68.                 </vbox>
  69.     
  70.                 <vbox id="schMoreAttendees"     hidden="true">
  71.                     <toolbarbutton id="attendees" 
  72.                         tooltiptext="&rf.schedule.showall.attendees;" 
  73.                         onmouseover="this.style.cursor='pointer';" 
  74.                         onclick="rmFx_showAttendees();" 
  75.                         label="+ xx "  /> 
  76.                 </vbox>
  77.             </hbox>
  78.  
  79.             <hbox height="10px" />
  80.             
  81.             <hbox id="schAttendeesBox0"     hidden="true">                
  82.                 <spacer width="20px" />
  83.                 <vbox >    
  84.                     <text value="&rf.schedule.attendees;" width="120px"/>
  85.                 </vbox>
  86.                 
  87.                 <vbox  id="schAttendeesBox"     hidden="false">
  88.                     <!-- ........ hbox for each attendee ...... -->
  89.                 <spacer  width="25px" />
  90.                 </vbox>
  91.             </hbox>
  92.  
  93.         </vbox>
  94.  
  95. </overlay>